aboutsummaryrefslogtreecommitdiff
path: root/src/app/(main)/websites/[websiteId]/events/page.tsx
blob: d77ba3bdcd3653d76a5f609532b1323d1fd10011 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import type { Metadata } from 'next';
import { EventsPage } from './EventsPage';

export default async function ({ params }: { params: Promise<{ websiteId: string }> }) {
  const { websiteId } = await params;

  return <EventsPage websiteId={websiteId} />;
}

export const metadata: Metadata = {
  title: 'Events',
};